Q3Mesh_FirstComponentEdge
You can use theQ3Mesh_FirstComponentEdge
function to get the first edge in a mesh component.
TQ3MeshEdge Q3Mesh_FirstComponentEdge ( TQ3MeshComponent component, TQ3MeshIterator *iterator);
component
- A mesh component.
iterator
- A pointer to a mesh iterator structure.
DESCRIPTION
TheQ3Mesh_FirstComponentEdge
function returns, as its function result, the first edge in the mesh component specified by thecomponent
parameter. Theiterator
parameter is a pointer to a mesh iterator structure thatQ3Mesh_FirstComponentEdge
fills in before returning. You should pass the address of that structure to theQ3Mesh_NextComponentEdge
function.SPECIAL CONSIDERATIONS
TheQ3Mesh_FirstComponentEdge
function might not accurately report the first edge in a mesh component if called while mesh updating is delayed (that is, after a call toQ3Mesh_DelayUpdates
but before the matching call toQ3Mesh_ResumeUpdates
).